#languages-container {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#language-selector img {
  width: 100%;
  height: 100%;
}
#language-selector {
  all: unset;
  padding: 5px;
  font-size: 16px;
  background-color: transparent;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
#language-selector:hover {
  background: #fafafa3b;
}

.languages-wrapper {
  position: absolute;
  left: 0;
  border: 1px solid transparent;
  padding: 3px;
  width: 90px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.languages-wrapper button.active {
  background: #323232;
}
.languages-wrapper button {
  all: unset;
  display: flex !important;
  align-items: center;
  justify-content: center;
  display: inline-block;
  padding: 5px 10px;
  background: #3232326b;
  border-radius: 10px;
}
.languages-wrapper button img {
  display: block;
  width: 25px;
  height: 25px;
}

.show-wrapper {
  opacity: 1;
  height: 190px;
}

*.english {
  font-family: monospace !important;
}
